home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Kara Collection
/
Kara Collection v3.0 (1996-09-12)(Cloanto).iso
/
utilities
/
script_dt
/
install
< prev
next >
Wrap
Text File
|
1996-02-21
|
1KB
|
40 lines
; $VER: InstallScript_dt 1.0
; Cloanto Script DataType Installer Script
; Copyright © 1996 Cloanto Italia srl
; Cloanto is a registered trademark of Cloanto Italia srl
; "Installer and Installer project icon Copyright © 1991-1993 Commodore-Amiga, Inc. All Rights Reserved
; Reproduced and distributed under license from Commodore"
; New installer icon design Copyright © 1994 Cloanto Italia srl
(if (< (/ (getversion "icon.library" (resident)) 65536) 39) (message "\nDataTypes require Amiga OS 3.0 or higher."))
(working "Installing Script DataType")
(if (<> (exists "SYS:Classes") 2) (makedir "SYS:Classes" (infos)) )
(copyfiles
(prompt "Copying Format Descriptor")
(help @copyfiles-help)
(source "Devs/DataTypes")
(dest "DEVS:DataTypes")
(all)
(infos)
(optional "nofail" "force")
(confirm)
)
(copylib
(prompt "Copying Script DataType")
(help @copylib-help)
(source "Classes/DataTypes/script.datatype")
(dest "SYS:Classes/DataTypes")
(optional "nofail" "force")
(confirm)
)
(run "C:AddDataTypes QUIET REFRESH")
(message "\nInstallation complete.\n\nDouble-click on \"Test_2\" to test.")
(exit (quiet))